home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Think Class Libraries / WASTE TCL 1.8 / WASTE TCL 1.8 ƒ / CTSMDesktop.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-12  |  553 b   |  27 lines  |  [TEXT/SPM ]

  1. /******************************************************************************\
  2.  CTSMDesktop.h
  3.  
  4.     Desktop that sets the cursor for TSM
  5.  
  6.     by Dan Crevier
  7.     version 1.8
  8.     
  9.     SCG        95/09/22    simplified a bit, added RTTI macro
  10.     Roms    95/11/08    adapted to THINK C / TCL 1.1.3
  11. \ ******************************************************************************/
  12.  
  13. #pragma once
  14.  
  15. #include <CDesktop.h>
  16.  
  17. class CTSMDesktop : public CDesktop
  18. {
  19. public:
  20.  
  21. #if TCL_VERSION >= 0x02000000
  22.     TCL_DECLARE_CLASS
  23. #endif
  24.  
  25.     virtual void DispatchCursor(Point where, RgnHandle mouseRgn);
  26. };
  27.